table lookup - определение. Что такое table lookup
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое table lookup - определение

ARRAY DATA STRUCTURE THAT REPLACES RUNTIME COMPUTATION WITH A SIMPLER ARRAY INDEXING OPERATION
Look-up table; Look up table; Look-up; Lookup; VLOOKUP; Table (computing); Table lookup; XLOOKUP
  • Part of a 20th-century table of [[common logarithm]]s in the reference book [[Abramowitz and Stegun]].
  • right
  • Red (A), Green (B), Blue (C) 16-bit lookup table file sample. (Lines 14 to 65524 not shown)
Найдено результатов: 1946
Lookup table         
In computer science, a lookup table (LUT) is an array that replaces runtime computation with a simpler array indexing operation. The process is termed as "direct addressing" and LUTs differ from hash tables in a way that, to retrieve a value v with key k, a hash table would store the value v in the slot h(k) where h is a hash function i.
lookup         
¦ noun [usu. as modifier] systematic electronic information retrieval.
3D lookup table         
3d lut; 3D LUT; 3D look-up table; 3D look up table; .cube
In the film industry, 3D lookup tables (3D LUTs) are used to map one color space to another. They are commonly used to calculate preview colors for a monitor or digital projector of how an image will be reproduced on another display device, typically the final digitally projected image or release print of a movie.
Argument-dependent name lookup         
C++ BEHAVIOR
Koenig Lookup; Argument dependent lookup; Koenig lookup; Argument dependent name lookup; Argument-dependent lookup
In the C++ programming language, argument-dependent lookup (ADL), or argument-dependent name lookup, applies to the lookup of an unqualified function name depending on the types of the arguments given to the function call. This behavior is also known as Koenig lookup, as it is often attributed to Andrew Koenig, though he is not its inventor.
Table Alphabeticall         
  • The title page of the third edition of ''Table Alphabeticall''.
ENGLISH DICTIONARY PUBLISHED IN 1604
A Table Alphabeticall; Table alphabeticall; Table Alphabetical
A Table Alphabeticall is the abbreviated title of the first monolingual dictionary in the English language, created by Robert Cawdrey and first published in London in 1604.
Table (database)         
SET OF DATA ELEMENTS ARRANGED IN ROWS AND COLUMNS AS PART OF A DATABASE
Database table; Database Tables; Cell (database); Table (SQL); SQL table; Base table
A table is a collection of related data held in a table format within a database. It consists of columns and rows.
Billiard table         
  • Billiard Table Manufactory, J. M. Brunswick & Bro., Proprietors, Cincinnati, Ohio, 1865 ad
  • A WEPF-style pool table, showing a cue ball and red and yellow balls close to the small, rounded, nearly parallel-sided pocket
  • cue ball}} and the 1 ball close to a WPA-style pocket. (The balls are the same size; the cue ball looks large due to [[foreshortening]].)
  • Snooker table, drawn to scale
SPECIAL TABLE USED EXCLUSIVELY FOR BILLIARDS OR SNOOKER
Pool table; Pocket (billiards); Pool tables; Snooker table; Billiards table; Billiards board; Billiard board; Billiards tables; Billiard tables; Snooker tables
A billiard table or billiards table is a bounded table on which cue sports are played. In the modern era, all billiards tables (whether for carom billiards, pool, pyramid or snooker) provide a flat surface usually made of quarried slate, that is covered with cloth (usually of a tightly woven worsted wool called baize), and surrounded by vulcanized rubber cushions, with the whole thing elevated above the floor.
multiplication table         
  • "Table of Pythagoras" on [[Napier's bones]]<ref>[[Wikisource:Page:Popular Science Monthly Volume 26.djvu/467]]</ref>
  • The [[Tsinghua Bamboo Slips]], Chinese [[Warring States]] era decimal multiplication table of 305&nbsp;BC
MATHEMATICAL TABLE
Times table; Times tables; Tables of multiplication; Multiplication tables; Multiplication Table; Table of Pythagoras; Draft:Division Table
¦ noun a list of multiples of a particular number, typically from 1 to 12.
multiplication table         
  • "Table of Pythagoras" on [[Napier's bones]]<ref>[[Wikisource:Page:Popular Science Monthly Volume 26.djvu/467]]</ref>
  • The [[Tsinghua Bamboo Slips]], Chinese [[Warring States]] era decimal multiplication table of 305&nbsp;BC
MATHEMATICAL TABLE
Times table; Times tables; Tables of multiplication; Multiplication tables; Multiplication Table; Table of Pythagoras; Draft:Division Table
(multiplication tables)
A multiplication table is a list of the multiplications of numbers between one and twelve. Children often have to learn multiplication tables at school.
= table
N-COUNT
Multiplication table         
  • "Table of Pythagoras" on [[Napier's bones]]<ref>[[Wikisource:Page:Popular Science Monthly Volume 26.djvu/467]]</ref>
  • The [[Tsinghua Bamboo Slips]], Chinese [[Warring States]] era decimal multiplication table of 305&nbsp;BC
MATHEMATICAL TABLE
Times table; Times tables; Tables of multiplication; Multiplication tables; Multiplication Table; Table of Pythagoras; Draft:Division Table
In mathematics, a multiplication table (sometimes, less formally, a times table) is a mathematical table used to define a multiplication operation for an algebraic system.

Википедия

Lookup table

In computer science, a lookup table (LUT) is an array that replaces runtime computation with a simpler array indexing operation. The savings in processing time can be significant, because retrieving a value from memory is often faster than carrying out an "expensive" computation or input/output operation. The tables may be precalculated and stored in static program storage, calculated (or "pre-fetched") as part of a program's initialization phase (memoization), or even stored in hardware in application-specific platforms. Lookup tables are also used extensively to validate input values by matching against a list of valid (or invalid) items in an array and, in some programming languages, may include pointer functions (or offsets to labels) to process the matching input. FPGAs also make extensive use of reconfigurable, hardware-implemented, lookup tables to provide programmable hardware functionality.